home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / diff_2_3.lha / diff-2.3 / dir.c < prev    next >
C/C++ Source or Header  |  1993-02-11  |  6KB  |  214 lines

  1. /* Read, sort and compare two directories.  Used for GNU DIFF.
  2.    Copyright (C) 1988, 1989, 1992 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU DIFF.
  5.  
  6. GNU DIFF is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU DIFF is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU DIFF; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #include "diff.h"
  21.  
  22. static int compare_names ();
  23.  
  24. /* Read the directory named by DIR and store into DIRDATA a sorted vector
  25.    of filenames for its contents.  DIR->desc == -1 means this directory is
  26.    known to be nonexistent, so set DIRDATA to an empty vector.
  27.    Return -1 (setting errno) if error, 0 otherwise.  */
  28.  
  29. struct dirdata
  30. {
  31.   char **files;    /* Sorted names of files in dir, terminated by (char *) 0. */
  32.   char *data;    /* Allocated storage for file names.  */
  33. };
  34.  
  35. static int
  36. dir_sort (dir, dirdata)
  37.      struct file_data *dir;
  38.      struct dirdata *dirdata;
  39. {
  40.   register struct direct *next;
  41.   register int i;
  42.  
  43.   /* Address of block containing the files that are described.  */
  44.   char **files;
  45.  
  46.   /* Number of files in directory.  */
  47.   int nfiles;
  48.  
  49.   /* Allocated and used storage for file name data.  */
  50.   char *data;
  51.   size_t data_alloc, data_used;
  52.  
  53.   dirdata->files = 0;
  54.   dirdata->data = 0;
  55.   nfiles = 0;
  56.  
  57.   if (dir->desc != -1)
  58.     {
  59.       /* Open the directory and check for errors.  */
  60.       register DIR *reading = opendir (dir->name);
  61.       if (!reading)
  62.     return -1;
  63.  
  64.       /* Initialize the table of filenames.  */
  65.  
  66.       data_alloc = max (1, (size_t) dir->stat.st_size);
  67.       data_used = 0;
  68.       dirdata->data = data = (char *) xmalloc (data_alloc);
  69.  
  70.       /* Read the directory entries, and insert the subfiles
  71.      into the `data' table.  */
  72.  
  73.       while ((errno = 0, (next = readdir (reading)) != 0))
  74.     {
  75.       char *d_name = next->d_name;
  76.       size_t d_size;
  77.  
  78.       /* Ignore the files `.' and `..' */
  79.       if (d_name[0] == '.'
  80.           && (d_name[1] == 0 || (d_name[1] == '.' && d_name[2] == 0)))
  81.         continue;
  82.  
  83.       if (excluded_filename (d_name))
  84.         continue;
  85.  
  86.       d_size = strlen (d_name) + 1;
  87.       while (data_alloc < data_used + d_size)
  88.         dirdata->data = data = (char *) xrealloc (data, data_alloc *= 2);
  89.       bcopy (d_name, data + data_used, d_size);
  90.       data_used += d_size;
  91.       nfiles++;
  92.     }
  93.       if (errno)
  94.     {
  95.       int e = errno;
  96.       closedir (reading);
  97.       errno = e;
  98.       return -1;
  99.     }
  100. #ifdef VOID_CLOSEDIR
  101.       closedir (reading);
  102. #else
  103.       if (closedir (reading) != 0)
  104.     return -1;
  105. #endif
  106.     }
  107.  
  108.   /* Create the `files' table from the `data' table.  */
  109.   dirdata->files = files = (char **) xmalloc (sizeof (char *) * (nfiles + 1));
  110.   for (i = 0;  i < nfiles;  i++)
  111.     {
  112.       files[i] = data;
  113.       data += strlen (data) + 1;
  114.     }
  115.   files[nfiles] = 0;
  116.  
  117.   /* Sort the table.  */
  118.   qsort (files, nfiles, sizeof (char *), compare_names);
  119.  
  120.   return 0;
  121. }
  122.  
  123. /* Sort the files now in the table.  */
  124.  
  125. static int
  126. compare_names (file1, file2)
  127.      char **file1, **file2;
  128. {
  129.   return strcmp (*file1, *file2);
  130. }
  131.  
  132. /* Compare the contents of two directories named in FILEVEC[0] and FILEVEC[1].
  133.    This is a top-level routine; it does everything necessary for diff
  134.    on two directories.
  135.  
  136.    FILEVEC[0].desc == -1 says directory FILEVEC[0] doesn't exist,
  137.    but pretend it is empty.  Likewise for FILEVEC[1].
  138.  
  139.    HANDLE_FILE is a caller-provided subroutine called to handle each file.
  140.    It gets five operands: dir and name (rel to original working dir) of file
  141.    in dir 0, dir and name pathname of file in dir 1, and the recursion depth.
  142.  
  143.    For a file that appears in only one of the dirs, one of the name-args
  144.    to HANDLE_FILE is zero.
  145.  
  146.    DEPTH is the current depth in recursion, used for skipping top-level
  147.    files by the -S option.
  148.  
  149.    Returns the maximum of all the values returned by HANDLE_FILE,
  150.    or 2 if trouble is encountered in opening files.  */
  151.  
  152. int
  153. diff_dirs (filevec, handle_file, depth)
  154.      struct file_data filevec[];
  155.      int (*handle_file) ();
  156.      int depth;
  157. {
  158.   struct dirdata dirdata[2];
  159.   int val = 0;            /* Return value.  */
  160.   int i;
  161.  
  162.   /* Get sorted contents of both dirs.  */
  163.   for (i = 0; i < 2; i++)
  164.     if (dir_sort (&filevec[i], &dirdata[i]) != 0)
  165.       {
  166.     perror_with_name (filevec[i].name);
  167.     val = 2;
  168.       }
  169.  
  170.   if (val == 0)
  171.     {
  172.       register char **files0 = dirdata[0].files;
  173.       register char **files1 = dirdata[1].files;
  174.       char *name0 = filevec[0].name;
  175.       char *name1 = filevec[1].name;
  176.  
  177.       /* If `-S name' was given, and this is the topmost level of comparison,
  178.      ignore all file names less than the specified starting name.  */
  179.  
  180.       if (dir_start_file && depth == 0)
  181.     {
  182.       while (*files0 && strcmp (*files0, dir_start_file) < 0)
  183.         files0++;
  184.       while (*files1 && strcmp (*files1, dir_start_file) < 0)
  185.         files1++;
  186.     }
  187.  
  188.       /* Loop while files remain in one or both dirs.  */
  189.       while (*files0 || *files1)
  190.     {
  191.       /* Compare next name in dir 0 with next name in dir 1.
  192.          At the end of a dir,
  193.          pretend the "next name" in that dir is very large.  */
  194.       int nameorder = (!*files0 ? 1 : !*files1 ? -1
  195.                : strcmp (*files0, *files1));
  196.       int v1 = (*handle_file) (name0, 0 < nameorder ? 0 : *files0++,
  197.                    name1, nameorder < 0 ? 0 : *files1++,
  198.                    depth + 1);
  199.       if (v1 > val)
  200.         val = v1;
  201.     }
  202.     }
  203.   
  204.   for (i = 0; i < 2; i++)
  205.     {
  206.       if (dirdata[i].files)
  207.     free (dirdata[i].files);
  208.       if (dirdata[i].data)
  209.     free (dirdata[i].data);
  210.     }
  211.  
  212.   return val;
  213. }
  214.